Nullable.get

Gets the value. this must not be in the null state. This function is also called for the implicit conversion to T.

struct Nullable(T)
@property ref inout @safe pure nothrow
inout(T)
get
()

Return Value

Type: inout(T)

The value held internally by this Nullable.

Precondition:

assert(!isNull);

Meta